home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #11 / CD 11 (Black) - 2001.iso / Fruity / ROLLUPS.DXR / 00103_GeneralRoutines1.ls < prev    next >
Encoding:
Text File  |  1998-04-13  |  13.0 KB  |  574 lines

  1. on IsProj
  2.   return 1
  3. end
  4.  
  5. on SetHandCursor
  6.   set fcur to the number of member 3 of castLib 2
  7.   set lcur to the number of member 4 of castLib 2
  8.   cursor([fcur, lcur])
  9. end
  10.  
  11. on SetGrabCursor
  12.   set fcur to the number of member 5 of castLib 2
  13.   set lcur to the number of member 6 of castLib 2
  14.   cursor([fcur, lcur])
  15. end
  16.  
  17. on CRCursor
  18.   set fcur to the number of member 11 of castLib 2
  19.   set lcur to the number of member 12 of castLib 2
  20.   cursor([fcur, lcur])
  21. end
  22.  
  23. on CCRCursor
  24.   set fcur to the number of member 13 of castLib 2
  25.   set lcur to the number of member 14 of castLib 2
  26.   cursor([fcur, lcur])
  27. end
  28.  
  29. on setMacFlush
  30.   if not isPC() then
  31.     openXLib(the pathName & "XOBJS:JOHNNY.XOBJ")
  32.   end if
  33. end
  34.  
  35. on StopMacFlush
  36.   if not isPC() then
  37.     closeXLib(the pathName & "XOBJS:JOHNNY.XOBJ")
  38.   end if
  39. end
  40.  
  41. on setMember chan, memNum, cstLibNum
  42.   global gBlank
  43.   if memNum = -50 then
  44.     set the member of sprite chan to member gBlank of castLib 2
  45.   else
  46.     set the member of sprite chan to member memNum of castLib cstLibNum
  47.   end if
  48. end
  49.  
  50. on isPC
  51.   if the machineType = 256 then
  52.     return 1
  53.   else
  54.     return 0
  55.   end if
  56. end
  57.  
  58. on setPuppets theList, state
  59.   repeat with theChan in theList
  60.     puppetSprite(theChan, state)
  61.     set the stretch of sprite theChan to 0
  62.   end repeat
  63. end
  64.  
  65. on UpdateRolls
  66.   global gButtList, gActiveCast
  67.   set mCast to the mouseCast
  68.   if getPos(gActiveCast, mCast) then
  69.     mRollButt(getAt(gButtList, getPos(gActiveCast, mCast)))
  70.   end if
  71.   updateStage()
  72. end
  73.  
  74. on soundPlay chan, filePath
  75.   sound playFile chan, filePath
  76. end
  77.  
  78. on puppetSnd chan, soundNum
  79.   if (chan > 10) or stringp(chan) then
  80.     if stringp(chan) then
  81.       if chan = EMPTY then
  82.         exit
  83.       end if
  84.     else
  85.       if chan <= 0 then
  86.         exit
  87.       end if
  88.     end if
  89.     puppetSound(chan)
  90.     exit
  91.   end if
  92.   if stringp(soundNum) then
  93.     if soundNum = EMPTY then
  94.       exit
  95.     end if
  96.   else
  97.     if soundNum <= 0 then
  98.       exit
  99.     end if
  100.   end if
  101.   puppetSound(chan, soundNum)
  102. end
  103.  
  104. on complexPuppetSnd chan, soundNum
  105.   global gSndPurgeList
  106.   if stringp(soundNum) then
  107.     if soundNum = EMPTY then
  108.       exit
  109.     end if
  110.   end if
  111.   if soundNum <= 0 then
  112.     exit
  113.   end if
  114.   if soundNum <> 0 then
  115.     puppetSound(1, 0)
  116.   end if
  117.   if count(gSndPurgeList) then
  118.     PurgeList(gSndPurgeList)
  119.     set gSndPurgeList to []
  120.   end if
  121.   puppetSound(chan, soundNum)
  122.   add(gSndPurgeList, soundNum)
  123. end
  124.  
  125. on PuppetSndNU soundNum
  126.   global gSndPurgeList
  127.   if stringp(soundNum) then
  128.     if soundNum = EMPTY then
  129.       exit
  130.     end if
  131.   end if
  132.   if soundNum <= 0 then
  133.     exit
  134.   end if
  135.   puppetSound(1, 0)
  136.   if count(gSndPurgeList) then
  137.     PurgeList(gSndPurgeList)
  138.     set gSndPurgeList to []
  139.   end if
  140.   puppetSound(the name of member soundNum)
  141.   add(gSndPurgeList, soundNum)
  142. end
  143.  
  144. on UStage theTime
  145.   updateStage()
  146.   repeat while the timer < theTime
  147.   end repeat
  148. end
  149.  
  150. on FindEvilCast evilCastNum
  151.   repeat with i = 1 to 126
  152.     go(i)
  153.     updateStage()
  154.     repeat with J = 1 to 48
  155.       if the castNum of sprite J <> 0 then
  156.         if the castLibNum of sprite J = evilCastNum then
  157.           put "sprite " & J && "at frame " & i && "is evil"
  158.         end if
  159.       end if
  160.     end repeat
  161.   end repeat
  162. end
  163.  
  164. on Shuffle startList
  165.   set shuffleList to []
  166.   set copyList to value(string(startList))
  167.   set listSize to count(startList)
  168.   repeat with z = 1 to listSize
  169.     set index to random(count(copyList))
  170.     add(shuffleList, getAt(copyList, index))
  171.     deleteAt(copyList, index)
  172.   end repeat
  173.   return shuffleList
  174. end
  175.  
  176. on setStretch theList, state
  177.   repeat with theChan in theList
  178.     set the stretch of sprite theChan to 0
  179.   end repeat
  180. end
  181.  
  182. on SwitchCast chan1, chan2
  183.   set hold1 to the castNum of sprite chan1
  184.   set the castNum of sprite chan1 to the memberNum of sprite chan2
  185.   set the castNum of sprite chan2 to hold1
  186. end
  187.  
  188. on SwitchSprite chan1, chan2
  189.   set hold1 to the member of sprite chan1
  190.   set holdloc1 to the loc of sprite chan1
  191.   set the member of sprite chan1 to the member of sprite chan2
  192.   set the loc of sprite chan1 to the loc of sprite chan2
  193.   set the member of sprite chan2 to hold1
  194.   set the loc of sprite chan2 to holdloc1
  195. end
  196.  
  197. on wait sticks
  198.   set theTime to the timer + sticks
  199.   repeat while the timer < theTime
  200.   end repeat
  201. end
  202.  
  203. on waitClick sticks
  204.   set theTime to the timer + sticks
  205.   repeat while the timer < theTime
  206.     if the mouseDown then
  207.       exit repeat
  208.     end if
  209.   end repeat
  210. end
  211.  
  212. on waitCursor
  213.   cursor(200)
  214.   cursor(4)
  215. end
  216.  
  217. on resetCursor
  218.   cursor(200)
  219.   set fcur to the number of member 1 of castLib 2
  220.   set lcur to the number of member 2 of castLib 2
  221.   cursor([fcur, lcur])
  222. end
  223.  
  224. on Dissolvetransition
  225.   if not IsShockWave() then
  226.     if the machineType <> 256 then
  227.       puppetTransition(51, 2)
  228.     else
  229.       puppetTransition(24, 2, 12)
  230.     end if
  231.   end if
  232. end
  233.  
  234. on sfo chan, fadeOutTime
  235.   set startLevel to the volume of sound chan
  236.   set theEndTime to the timer + fadeOutTime
  237.   repeat while the timer <= theEndTime
  238.     set theTimeLeft to theEndTime - the timer
  239.     set thePercent to theTimeLeft / (fadeOutTime * 1.0)
  240.     set the volume of sound chan to integer(startLevel * thePercent)
  241.   end repeat
  242.   set the volume of sound chan to 0
  243.   sound stop chan
  244.   if chan = 1 then
  245.     puppetSound(0)
  246.   end if
  247.   set the volume of sound chan to startLevel
  248. end
  249.  
  250. on sfd chan, fadeTime, endLevel
  251.   set startLevel to the volume of sound chan
  252.   set delta to startLevel - endLevel
  253.   set theEndTime to the timer + fadeTime
  254.   repeat while the timer <= theEndTime
  255.     set theTimeLeft to theEndTime - the timer
  256.     set thePercent to theTimeLeft / (fadeTime * 1.0)
  257.     set the volume of sound chan to endLevel + integer(delta * thePercent)
  258.   end repeat
  259.   set the volume of sound chan to endLevel
  260. end
  261.  
  262. on Dist PtA, PtB
  263.   set vector to PtB - PtA
  264.   set distance to sqrt(listSum(vector * vector))
  265.   return distance
  266. end
  267.  
  268. on listSum theList
  269.   set sum to 0
  270.   repeat with entry in theList
  271.     if not (integerp(entry) or floatp(entry)) then
  272.       set entry to 0
  273.     end if
  274.     set sum to sum + entry
  275.   end repeat
  276.   return sum
  277. end
  278.  
  279. on Flush
  280.   global gFlush, gIsPc
  281.   if not gIsPc and not IsShockWave() then
  282.     set gFlush to Johnny(mnew)
  283.     gFlush(mFlush)
  284.     gFlush(mdispose)
  285.   else
  286.     PCFlush()
  287.   end if
  288. end
  289.  
  290. on PCFlush
  291.   global oldkeyD, oldMd, oldMu, flushActive
  292.   if flushActive then
  293.     exit
  294.   end if
  295.   set oldkeyD to the keyDownScript
  296.   set oldMd to the mouseDownScript
  297.   set oldMu to the mouseUpScript
  298.   set the keyDownScript to "dontPassEvent"
  299.   set the mouseDownScript to "dontPassEvent"
  300.   set the mouseUpScript to "dontPassEvent"
  301.   set the timeoutLength to 5
  302.   set the timeoutScript to "ResetEvents"
  303.   set flushActive to 1
  304. end
  305.  
  306. on KillPCFlush
  307.   global flushActive
  308.   set the mouseDownScript to EMPTY
  309.   set the mouseUpScript to EMPTY
  310.   set the keyDownScript to EMPTY
  311.   set the timeoutScript to EMPTY
  312.   set flushActive to 0
  313. end
  314.  
  315. on ResetEvents
  316.   global oldkeyD, oldMd, oldMu, flushActive
  317.   set the keyDownScript to oldkeyD
  318.   if oldMd = "DontPassEvent" then
  319.     set the mouseDownScript to EMPTY
  320.   else
  321.     set the mouseDownScript to oldMd
  322.   end if
  323.   if oldMu = "DontPassEvent" then
  324.     set the mouseUpScript to EMPTY
  325.   else
  326.     set the mouseUpScript to oldMu
  327.   end if
  328.   set the timeoutScript to EMPTY
  329.   set flushActive to 0
  330. end
  331.  
  332. on AnimLinLoop chan, theSound, castList, waitTime, castLibNum, restore
  333.   loadAnim(theSound, castList)
  334.   PuppetSndNU(theSound)
  335.   set fCst to the castNum of sprite chan
  336.   repeat with theMemNum in castList
  337.     set theTime to the timer + waitTime
  338.     set the member of sprite chan to member theMemNum of castLib castLibNum
  339.     UStage(theTime)
  340.     if not soundBusy(1) then
  341.       exit repeat
  342.     end if
  343.   end repeat
  344.   repeat while soundBusy(1)
  345.     repeat with theMemNum in castList
  346.       set theTime to the timer + waitTime
  347.       set the member of sprite chan to member theMemNum of castLib castLibNum
  348.       UStage(theTime)
  349.       if not soundBusy(1) then
  350.         exit repeat
  351.       end if
  352.     end repeat
  353.   end repeat
  354.   sound stop 1
  355.   if restore then
  356.     set the castNum of sprite chan to fCst
  357.     updateStage()
  358.   end if
  359.   unloadMember(theSound)
  360.   PurgeList(castList)
  361. end
  362.  
  363. on AnimLin chan, theSound, castList, waitTime, castLibNum
  364.   loadAnim(theSound, castList)
  365.   PuppetSndNU(theSound)
  366.   repeat with theMemNum in castList
  367.     set theTime to the timer + waitTime
  368.     setMember(chan, theMemNum, castLibNum)
  369.     UStage(theTime)
  370.   end repeat
  371.   unloadMember(theSound)
  372.   PurgeList(castList)
  373. end
  374.  
  375. on AnimRandLoop chan, theSound, castList, waitTime, castLibNum
  376.   loadAnim(theSound, castList)
  377.   puppetSnd(1, theSound)
  378.   updateStage()
  379.   repeat while soundBusy(1)
  380.     set animList to Shuffle(castList)
  381.     repeat with theMemNum in castList
  382.       set theTime to the timer + Randomize(waitTime, 3)
  383.       set the member of sprite chan to member theMemNum of castLib castLibNum
  384.       UStage(theTime)
  385.       if not soundBusy(1) then
  386.         exit repeat
  387.       end if
  388.     end repeat
  389.   end repeat
  390.   sound stop 1
  391.   unloadMember(theSound)
  392.   PurgeList(castList)
  393. end
  394.  
  395. on button downSnd, upSound, doScript
  396.   set chan to the clickOn
  397.   set the stretch of sprite chan to 0
  398.   set UpCast to the castNum of sprite chan
  399.   set downCast to UpCast + 1
  400.   set the castNum of sprite chan to downCast
  401.   puppetSnd(1, downSnd)
  402.   updateStage()
  403.   repeat while soundBusy(1)
  404.   end repeat
  405.   repeat while the mouseDown
  406.     if rollOver(chan) then
  407.       if the castNum of sprite chan = UpCast then
  408.         set the castNum of sprite chan to downCast
  409.         puppetSnd(1, downSnd)
  410.       end if
  411.     else
  412.       if the castNum of sprite chan = downCast then
  413.         set the castNum of sprite chan to UpCast
  414.         puppetSnd(1, upSound)
  415.       end if
  416.     end if
  417.     updateStage()
  418.   end repeat
  419.   repeat while soundBusy(1)
  420.   end repeat
  421.   if the castNum of sprite chan = downCast then
  422.     set the castNum of sprite chan to UpCast
  423.     puppetSnd(1, upSound)
  424.     updateStage()
  425.     repeat while soundBusy(1)
  426.     end repeat
  427.     do(doScript)
  428.   end if
  429.   Flush()
  430. end
  431.  
  432. on Randomize center, range
  433.   return center + random(range) - (range / 2)
  434. end
  435.  
  436. on RandomizeLoc locPoint, range
  437.   return locPoint + point(random(range) - (range / 2), random(range) - (range / 2))
  438. end
  439.  
  440. on setFont fieldNum, ffont, ffontsize, ffontStyle
  441.   set the textFont of member fieldNum to ffont
  442.   set the textSize of member fieldNum to ffontsize
  443.   set the textStyle of member fieldNum to ffontStyle
  444. end
  445.  
  446. on stageConstrainH source, range
  447.   if source > (0 + range) then
  448.     if source < (640 - range) then
  449.       return source
  450.     else
  451.       return 640 - range
  452.     end if
  453.   else
  454.     return 0 + range
  455.   end if
  456. end
  457.  
  458. on stageConstrainV source, range
  459.   if source > (0 + range) then
  460.     if source < (480 - range) then
  461.       return source
  462.     else
  463.       return 480 - range
  464.     end if
  465.   else
  466.     return 0 + range
  467.   end if
  468. end
  469.  
  470. on stageConstrainHNS source, leftLimit, rightLimit
  471.   if source > (0 + leftLimit) then
  472.     if source < (640 - rightLimit) then
  473.       return source
  474.     else
  475.       return 640 - rightLimit
  476.     end if
  477.   else
  478.     return 0 + leftLimit
  479.   end if
  480. end
  481.  
  482. on stageConstrainVns source, topLimit, bottomLimit
  483.   if source > (0 + topLimit) then
  484.     if source < (480 - bottomLimit) then
  485.       return source
  486.     else
  487.       return 480 - bottomLimit
  488.     end if
  489.   else
  490.     return 0 + topLimit
  491.   end if
  492. end
  493.  
  494. on cacheSound sound
  495.   if stringp(sound) then
  496.     puppetSound(5, the number of member sound)
  497.     sound stop 5
  498.   else
  499.     puppetSound(5, sound)
  500.     sound stop 5
  501.   end if
  502. end
  503.  
  504. on setToAllCaps theText
  505.   if not stringp(theText) then
  506.     return -1
  507.   end if
  508.   set NumOfChars to the number of chars in theText
  509.   set newString to EMPTY
  510.   set problemflag to 0
  511.   repeat with i = 1 to NumOfChars
  512.     set num to charToNum(char i of theText)
  513.     if (num > 64) and (num < 91) then
  514.       put char i of theText after newString
  515.       next repeat
  516.     end if
  517.     if (num > 96) and (num < 123) then
  518.       put numToChar(num - 32) after newString
  519.       next repeat
  520.     end if
  521.     if num = 32 then
  522.       put numToChar(num) after newString
  523.       next repeat
  524.     end if
  525.     put char i of theText after newString
  526.     set problemflag to 1
  527.   end repeat
  528.   if problemflag then
  529.     alert("The name has characters which are not letters.")
  530.   end if
  531.   return newString
  532. end
  533.  
  534. on TestForLettersOnly theString
  535.   set NumOfChars to the number of chars in theString
  536.   repeat with i = 1 to NumOfChars
  537.     set num to charToNum(char i of theString)
  538.     if (num <> 32) and not (((num > 64) and (num < 91)) or ((num > 96) and (num < 123))) then
  539.       return 0
  540.     end if
  541.   end repeat
  542.   return 1
  543. end
  544.  
  545. on CharTOBitMap fBitMap, theString
  546.   if not TestForLettersOnly(theString) then
  547.     return -1
  548.   end if
  549.   set NumOfChars to the number of chars in theString
  550.   set theList to []
  551.   set theString to setToAllCaps(theString)
  552.   repeat with i = 1 to NumOfChars
  553.     if charToNum(char i of theString) = 32 then
  554.       add(theList, fBitMap - 1 + 27)
  555.       next repeat
  556.     end if
  557.     add(theList, fBitMap - 1 + (charToNum(char i of theString) - 64))
  558.   end repeat
  559.   return theList
  560. end
  561.  
  562. on ProcessText theText
  563.   set ProcessedText to EMPTY
  564.   set holdChar to EMPTY
  565.   set lastCharNum to the number of chars in theText
  566.   repeat with zCount = 1 to lastCharNum
  567.     set holdChar to char zCount of theText
  568.     if (holdChar <> ",") and (holdChar <> RETURN) then
  569.       put holdChar after ProcessedText
  570.     end if
  571.   end repeat
  572.   return ProcessedText
  573. end
  574.